home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 12 / CU Amiga Magazine's Super CD-ROM 12 (1997)(EMAP Images)(GB)[!][issue 1997-07].iso / CUCD / Games / DestructivePoker / sources / sources.lha / requester.h < prev    next >
C/C++ Source or Header  |  1997-02-18  |  477b  |  29 lines

  1. /*
  2.         requester.h      (requesteri)
  3.  
  4.         V1.00 - 241196  Kimmo Teräväinen
  5.         -----   ------  ----------------
  6.         V0.10   270197  Done
  7.  
  8.  
  9.  
  10. */
  11. #ifndef DC1_POKER_REQUESTER
  12. #define DC1_POKER_REQUESTER
  13.  
  14.  
  15. #include <intuition/intuition.h>
  16. #include "cstring.h"
  17.  
  18. class cRequester {
  19.   Window *parent;
  20.   cstring title,text;
  21. public:
  22.   cRequester(Window *Wnd,const char *Title,const char *Text) :
  23.     parent(Wnd), title(Title), text(Text) {}
  24.  
  25.   void Execute();
  26. };
  27.  
  28.  
  29. #endif